home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / msysjour / vol04 / 01a / genapp / genapp.def < prev    next >
Text File  |  1988-10-24  |  782b  |  30 lines

  1. ;**************************************************************************
  2. ;*
  3. ;*       GENAPP.DEF - Module definition file for GENAPP
  4. ;*
  5. ;**************************************************************************
  6.  
  7. NAME    GENAPP
  8. DESCRIPTION 'GENAPP'    ; This appears in Title Bar
  9.  
  10.  
  11. CODE    PRELOAD MOVEABLE        ; Code is all resident but may be moved.
  12. DATA    PRELOAD FIXED MULTIPLE  ; Data may be partitioned and moved.
  13.  
  14. HEAPSIZE    2048
  15. STACKSIZE   4096
  16.  
  17. STUB 'WINSTUB.EXE'      ; This informs an attempted DOS invocation that
  18.                         ; This needs Windows to run.
  19.  
  20. EXPORTS                 ; These need to made available externally.
  21.  
  22.     win_MainWndProc        @1
  23.     win_ChildWndProc        @2
  24.     dlg_AboutBoxProc        @3
  25.  
  26. ;    DebugWndProc        @4
  27.  
  28.  
  29.  
  30.